home *** CD-ROM | disk | FTP | other *** search
- import java.awt.*;
- import java.applet.*;
-
- public class UIApplet extends Applet {
- TextField txt;
-
- public void init() {
- txt = new TextField(10);
- add(txt);
- add(new Button("Show"));
- }
- public boolean action(Event evt, Object arg) {
- showStatus(txt.getText());
- return true;
- }
- }
-